home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 5 for Professionals
/
DELPHI5.iso
/
AddOns
/
Components
/
RealTime Graphics ActiveX
/
DATA.3
/
Examples
/
Delphi
/
Bars
/
Bars.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-10-17
|
184 b
|
14 lines
program Bars;
uses
Forms,
BarsU in 'BarsU.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.